home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 8 code / AUX Hybrid Apps / AUX System Calls / src / socket.a < prev    next >
Encoding:
Text File  |  1991-10-09  |  316 b   |  20 lines  |  [TEXT/tefi]

  1. ;    @(;)Copyright Apple Computer 1987    Version 1.1 of socket.s on 87/05/03 225206 (Apple)
  2.  
  3.     export    auxsocket
  4.     import    cerror
  5.     
  6. auxsocket    proc
  7.     move.l    #92,d0
  8.  
  9.     move.l    4(sp),a0        ; fetch argument
  10.     move.l    8(sp),d1        ; fetch argument
  11.     move.l    12(sp),a1        ; fetch argument
  12.     trap    #15
  13.     bcs.s    LS1
  14.     rts    
  15.  
  16. LS1    jmp    cerror
  17.     endp
  18.     
  19.     end
  20.